home *** CD-ROM | disk | FTP | other *** search
- on beginmyquit x, y, w, h
- global myquit
- if objectp(myquit) then
- forget(myquit)
- end if
- set horzorigin to the stageLeft + x
- set vertorigin to the stageTop + y
- set mywindowrect to rect(horzorigin, vertorigin, horzorigin + w, vertorigin + h)
- set myquit to window "QUIT"
- set the rect of myquit to mywindowrect
- set the fileName of myquit to "QUIT"
- set the titleVisible of myquit to 1
- set the windowType of myquit to 1
- end
-
- on stopmyquit
- finishmyquit()
- end
-
- on finishmyquit
- global myquit
- if objectp(myquit) then
- forget(myquit)
- end if
- end
-